home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / tex-k / tex-k-archive.past / tex-k-archive.gz / tex-k-archive / 000208_andreas@mpa-garching.mpg.de_Tue Feb 1 13:09:24 1994.msg < prev    next >
Internet Message Format  |  1994-10-11  |  1KB

  1. Received: from ibm-1.mpa-garching.mpg.de by cs.umb.edu with SMTP id AA10327
  2.   (5.65c/IDA-1.4.4 for <tex-k@cs.umb.edu>); Tue, 1 Feb 1994 06:10:00 -0500
  3. Received: from localhost (andreas@localhost) by ibm-1.MPA-Garching.MPG.DE (8.6.4/8.6) id MAA86121; Tue, 1 Feb 1994 12:09:24 +0100
  4. Date: Tue, 1 Feb 1994 12:09:24 +0100
  5. From: Andreas Schott <andreas@mpa-garching.mpg.de>
  6. Message-Id: <199402011109.MAA86121@ibm-1.MPA-Garching.MPG.DE>
  7. To: "K. Berry" <kb@cs.umb.edu>
  8. Cc: tex-k@cs.umb.edu
  9. Subject: ../$(srcdir) versus $(srcdir)/..
  10. In-Reply-To: <199401281115.AA23645@terminus.cs.umb.edu>
  11. References: <199401281115.AA23645@terminus.cs.umb.edu>
  12. Reply-To: andreas@mpa-garching.mpg.de (Andreas Schott)
  13.  
  14. Hi Karl,
  15.  
  16. configure translates all relative pathes into absolute
  17. pathes except for the following cases: .|/*|~* . Here
  18. the excerpt from configure:
  19.  
  20. # Preserve a srcdir of `.' to avoid automounter screwups with pwd.
  21. # But we can't avoid them for `..', to make subdirectories work.
  22. case $srcdir in
  23.   .|/*|~*) ;;
  24.   *) srcdir=`cd $srcdir; pwd` ;; # Make relative path absolute.
  25. esac
  26.  
  27. So whatever you specify, except '.', is or is translated into an
  28. absolute path, so you must not use a construct like ../$(srcdir).
  29.  
  30. Or did I miss something?
  31.  
  32. Andreas.
  33.  
  34. P.S.: The Makefile.in in the web2c-subdirs are not clean concerning
  35.       the $(srcdir). I try to fix it for all cases of srcdir.
  36.  
  37.